home *** CD-ROM | disk | FTP | other *** search
- /* AlertPanel.h
- * Written By: Thomas Burkholder
- *
- * You may freely copy, distribute, and reuse the code in this example.
- * NeXT disclaims any warranty of any kind, expressed or implied, as to its
- * fitness for any particular use.
- */
-
-
- #import <appkit/appkit.h>
-
- // A subclass of Panel having all the usual UI pieces that we expect.
- @interface FTAlertPanel:Panel
- {
- id alert;
- id first;
- id iconButton;
- id message;
- id second;
- id third;
-
- int lastResult;
- }
-
- - buttonPressed:sender;
- - (int)lastResult;
- - run:sender;
- - alert;
- - first;
- - iconButton;
- - message;
- - second;
- - third;
-
- @end
-